for i = 1,25 do local Weld = Instance.new("Weld",game.Workspace) local Part0 = Instance.new("Part",Weld) Part0.TopSurface = Enum.SurfaceType.Smooth Part0.BottomSurface = Enum.SurfaceType.Smooth Part0.Size = Vector3.new(4,4,4) Part0.Transparency = 0.5 Part0.Reflectance = 1 Part0.BrickColor = BrickColor.new("Toothpaste") Part0.Material = Enum.Material.Glass Part0.Position = Vector3.new(math.random(-50,50) * Part0.Size.X,50,math.random(-50,50) * Part0.Size.Z) Part1 = Part0:Clone() Part1.Parent = Weld local Sound = Instance.new("Sound",Part0) Sound.SoundId = "rbxasset://sounds/glassbreak.wav" Sound.PlayOnRemove = true Weld.Part0 = Part0 Weld.Part1 = Part1 end